home *** CD-ROM | disk | FTP | other *** search
/ Software of the Month Club 2000 October / Software of the Month - Ultimate Collection Shareware 277.iso / pc / PROGRAMS / UTILITY / WINLINUX / DATA1.CAB / programs_-_kernel_source / FS / NOQUOT.C < prev    next >
Encoding:
C/C++ Source or Header  |  1999-09-17  |  342 b   |  16 lines

  1. /* noquot.c: Quota stubs necessary for when quotas are not
  2.  *           compiled into the kernel.
  3.  */
  4.  
  5. #include <linux/kernel.h>
  6. #include <linux/types.h>
  7. #include <linux/errno.h>
  8.  
  9. int nr_dquots = 0, nr_free_dquots = 0;
  10. int max_dquots = 0;
  11.  
  12. asmlinkage int sys_quotactl(int cmd, const char *special, int id, caddr_t addr)
  13. {
  14.     return(-ENOSYS);
  15. }
  16.